home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Objrepos / DelphiWin32 / LogoApp / LogApp.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  298 b   |  17 lines

  1. program LogoApp;
  2.  
  3. uses
  4.   Forms,
  5.   LOGOMAIN in 'LOGOMAIN.PAS' {LogoAppForm},
  6.   ABOUT in 'ABoUT.PAS' {AboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TLogoAppForm, LogoAppForm);
  13.   Application.CreateForm(TAboutBox, AboutBox);
  14.   Application.Run;
  15. end.
  16.  
  17.